.all-service{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
  max-width: 2650px;
  min-width: 0;
  justify-content: center;
  gap: 40px;
  margin: 24px;
  padding: 0 20px;
  z-index: -1;
}
@keyframes slideinleft {
 0%{transform: translateX(-900px);}  
 100%{transform: translateX(0px);}
}

@keyframes fadeup {

  0% {opacity: 0; scale: 0;}
  100% {opacity: 1; scale: 1;}
  
}
@keyframes slideinright {
 0%{transform: translateX(900px);}  
 100%{transform: translateX(0px);}
}

.service-todo-1{
animation: slideinleft 1s ease-out forwards;
}
.service-todo-2{
  animation: fadeup 1.6s ease-out forwards;
  }

.service-todo-3{
  animation: slideinright 2s ease-out forwards;
  }
.service-todo{
  display: grid;
  grid-template-rows: 36px  55px 60px 1fr;
  gap: 8px;
  width: 280px;
  background-color: rgb(0, 0, 0,0.02);
  padding: 30px 20px ;
  border-radius: 20px;
  transition-duration:0.2 ;
  transition:transform,  0.2s ease-out ;
  transition-timing-function: ease-out;
  transition-property: transform, box-shadow;
  transition: 0.5s;

}

.service-todo:hover{
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);

}


.icon-todo{
  font-size: 36px;
  justify-self: center;
  width: 36px;
  height: 36px;
  padding: 5px 5px;
  border-radius: 12%;
  background-color: rgba(255, 255, 255, 0.9);
  color: rgba(0, 0, 0,0.9)
}
.descr-do{
  font-size: 16px;
  font-weight: lighter;
  place-items: center;
  text-align: center;
  align-items: center;
  color: rgba(0, 0, 0,0.7);
  border-width: 0px 0px 1px 0px;
  border-bottom-color:  rgba(0, 0, 0,0.03);;
  border-style: solid;
}
.role-todo{
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 0, 0,0.7);
  justify-self: center;
  align-items: center;
  align-content: center;
  padding-top: 8px;
  border-width: 0px 0px 1px 0px;
  border-bottom-color:  rgba(0, 0, 0,0.04);;
  border-style: solid;
}
.skills-container{
  display: inline-block;
  color: rgb(0, 0, 0,0.5);
  background-color:rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  padding: 5px 5px ;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  
}

@media screen and (max-width: 768px) {
  .all-service{
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    margin: 24px 16px;
    padding: 0;
  }
  .service-todo-1{
    display: flex;
    justify-content: center;
  }
  .service-todo-2{
    display: flex;
    justify-content: center;
  }
  .service-todo-3{
    display: flex;
    justify-content: center;
  } 
  
  .service-todo{
    width: 45%;
    height: auto;
    max-width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width: 480px) {
  .all-service{
    gap: 20px;
    margin: 20px 12px;
    justify-items: center;
  }
  
  .service-todo{
    grid-template-rows: 36px  55px 82px 1fr;
    width: 80%;
    padding: 20px 16px;
  }
  
  .role-todo{
    font-size: 20px;
  }
  
  .descr-do{
    font-size: 14px;
  }
}